home *** CD-ROM | disk | FTP | other *** search
/ SVM Mac 58 / CD-ROM N°58.iso / navigateurs / Netscape Folder / chrome / wallet / content / default / WalletEditor.xul < prev    next >
Encoding:
Extensible Markup Language  |  2000-04-19  |  4.5 KB  |  104 lines  |  [TEXT/MOSS]

  1. <?xml version="1.0"?>
  2. <!-- 
  3.   The contents of this file are subject to the Netscape Public
  4.   License Version 1.1 (the "License"); you may not use this file
  5.   except in compliance with the License. You may obtain a copy of
  6.   the License at http://www.mozilla.org/NPL/
  7.   
  8.   Software distributed under the License is distributed on an "AS
  9.   IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.   implied. See the License for the specific language governing
  11.   rights and limitations under the License.
  12.   
  13.   The Original Code is Mozilla Communicator client code, released
  14.   March 31, 1998.
  15.   
  16.   The Initial Developer of the Original Code is Netscape
  17.   Communications Corporation. Portions created by Netscape are
  18.   Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.   Rights Reserved.
  20.   
  21.   Contributor(s):
  22. -->
  23.  
  24. <!-- CHANGE THIS WHEN MOVING FILES -->
  25. <?xml-stylesheet href="chrome://wallet/skin/" type="text/css"?> 
  26. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  27.  
  28. <!-- CHANGE THIS WHEN MOVING FILES -->
  29. <!DOCTYPE window SYSTEM "chrome://wallet/locale/WalletEditor.dtd" >
  30.  
  31. <window id="walleteditor"
  32.         class="dialog"
  33.         title="&windowtitle.label;"
  34.         xmlns:html="http://www.w3.org/TR/REC-html40"
  35.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  36.         align="vertical"
  37.         onload="Startup()">
  38.  
  39.   <html:script src="chrome://wallet/content/WalletEditor.js"/>
  40.     <html:script language="javascript" src="chrome://global/content/strres.js" />
  41.  
  42.     <box id="system" flex="100%" align="vertical">
  43.       <spring style="height: 7px;"/>
  44.       <box><html:div>&div.walletdataonsystem.label;</html:div></box>
  45.       <html:div class="separator" align="horizontal" style="margin-bottom: -2px;"/>
  46.       <spring style="height: 10px;"/>
  47.       <box id="system1" flex="100%" align="horizontal">
  48.         <spring style="width: 7px;"/>
  49.         <html:div style="width: 195px;">
  50.           <box><html:div>&treehead.schemaname.label;</html:div></box>
  51.           <tree id="schematree" class="inset" style="height: 250px; width: 195px;" align="vertical" 
  52.             onclick="ViewEntries();">
  53.             <treecol width="100%"/>
  54.             <treechildren id="schemalist"/>
  55.           </tree>
  56.           <spring flex="5%"/>
  57.           <spring style="height: 7px;"/>
  58.           <box align="horizontal">
  59.             <titledbutton id="removeSchema" class="dialog push" disabled="true" value="&button.remove.label;" onclick="DeleteSchema();"/>
  60.             <titledbutton id="addSchema" class="dialog push" disabled="false" value="&button.add.label;" onclick="AddSchema();"/>
  61.           </box>
  62.         </html:div>
  63.         <spring style="width: 7px;"/>
  64.         <html:div style="width: 195px;">
  65.           <box><html:div>&treehead.entries.label;</html:div></box>
  66.           <tree id="entrytree" class="inset" style="height: 113px; width: 195px;" align="vertical" 
  67.             onclick="ViewSynonyms();">
  68.             <treecol width="100%"/>
  69.             <treechildren id="entrieslist"/>
  70.           </tree>
  71.           <spring style="height: 7px;"/>
  72.           <box><html:div>&treehead.synonyms.label;</html:div></box>
  73.           <tree id="synonymtree" class="inset" style="height: 113px; width: 195px;" align="vertical" 
  74.             onclick="SynonymSelected();">
  75.             <treecol width="100%"/>
  76.             <treechildren id="synonymslist"/>
  77.           </tree>
  78.         </html:div>
  79.         <spring style="width: 7px;"/>
  80.         <html:div>
  81.           <box align="vertical">
  82.             <spring style="height: 12px;"/>
  83.             <titledbutton id="removeEntry" class="dialog push" disabled="true" value="&button.remove.label;" onclick="DeleteEntry();"/>
  84.             <titledbutton id="addEntry" class="dialog push" disabled="false" value="&button.add.label;" onclick="AddEntry();"/>
  85.             <spring style="height: 88px;"/>
  86.             <titledbutton id="removeSynonym" class="dialog push" disabled="true" value="&button.remove.label;" onclick="DeleteSynonym();"/>
  87.             <titledbutton id="addSynonym" class="dialog push" disabled="false" value="&button.add.label;" onclick="AddSynonym();"/>
  88.           </box>
  89.         </html:div>
  90.         <spring style="width: 7px;"/>
  91.       </box>
  92.     </box>
  93.     <html:div class="separator" align="horizontal" style="margin-bottom: -2px;"/>
  94.  
  95.   <!-- from dialogOverlay.xul -->
  96.   <spring style="height: 5px;"/>
  97.   <box align="horizontal">
  98.     <spring flex="100%"/>
  99.     <box id="okCancelButtons"/>
  100.   </box>
  101.   <spring style="height: 5px;"/>
  102.  
  103. </window>
  104.